iBATIS.NET Class Library DataMapper V1.6.1, DataAccess V1.9.1

RowDelegate<T> Delegate

A delegate called once per row in the QueryWithRowDelegate method

[Visual Basic]
Public Delegate Sub RowDelegate<T>( _
   ByVal Object As Object, _
   ByVal Object As Object, _
   ByVal IList<T> As IList{`0} _
)
[C#]
public delegate void RowDelegate<T>(
   Object obj,
   Object parameterObject,
   IList<T> list
);

Parameters

obj
The object currently being processed.
parameterObject
The optional parameter object passed into the QueryWithRowDelegate method.
list
The IList that will be returned to the caller.

Requirements

Namespace: IBatisNet.DataMapper

Assembly: IBatisNet.DataMapper (in IBatisNet.DataMapper.dll)

See Also

IBatisNet.DataMapper Namespace